home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / BCCGRX12.ZIP / contrib / bcc2grx / src / bccgrx17.c < prev    next >
C/C++ Source or Header  |  1993-05-04  |  496b  |  21 lines

  1. /*
  2.  *  BCC2GRX  -  Interfacing Borland based graphics programs to LIBGRX
  3.  *  Copyright (C) 1993  Hartmut Schirmer
  4.  *
  5.  *  see bccgrx.c for details
  6.  */
  7.  
  8. #include "bccgrx00.h"
  9.  
  10. void rectangle(int left, int top, int right, int bottom)
  11. {
  12.   _DO_INIT_CHECK;
  13.   if (__gr_lstyle == SOLID_LINE && LNE.lno_width == 1)
  14.     GrBox( left+VL, top+VT, right+VL, bottom+VT, COL|WR);
  15.   else {
  16.     LNE.lno_color = COL|WR;
  17.     GrCustomBox( left+VL, top+VT, right+VL, bottom+VT, &__gr_Line);
  18.   }
  19. }
  20.  
  21.